home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ov143b.zip / DIRECT.H < prev    next >
Text File  |  1993-01-04  |  2KB  |  59 lines

  1. /*  001  18-Apr-87  direct.h
  2.  
  3.         Copyright (c) 1987 by Blue Sky Software.  All rights reserved.
  4. */
  5.  
  6. /****************************************************************************/
  7. /**** If ALTCALL is defined as pascal, make sure its defined in DIRECT.ASM **/
  8. /****************************************************************************/
  9.  
  10. #define ALTCALL pascal         /* alternate calling method reduces overhead */
  11.  
  12. /* declare DIRECT.ASM and some OVTTY.C functions */
  13.  
  14. #ifdef LINT_ARGS
  15. void ALTCALL gotorc(int, int);
  16. void ALTCALL disp_str(char *);
  17. void ALTCALL disp_char(int);
  18. void ALTCALL disp_rep(int,int);
  19. void ALTCALL insert_line(int,int);
  20. void ALTCALL delete_line(int,int);
  21. void ALTCALL popup(int,int,int,int,char *);
  22. void ALTCALL popdwn(int,int,int,int,char *);
  23. void ALTCALL scrcpy(char far *, char far *);
  24. void ALTCALL setvattrib(int);
  25. void ALTCALL disp_str_at(char *, int, int);
  26. void ALTCALL disp_char_at(int, int, int);
  27. void ALTCALL disp_rep_at(int, int, int, int);
  28. void ALTCALL out_int(int, int, int);
  29. void ALTCALL out_long(long, int, int);
  30. void ALTCALL out_str(char *, int, int);
  31. void ALTCALL clr_eol(void);
  32. void clr_scr(void);
  33. void init_tty(void);
  34. void reinit_tty(void);
  35. void reset_tty(void);
  36. #else
  37. void ALTCALL gotorc();
  38. void ALTCALL disp_str();
  39. void ALTCALL disp_char();
  40. void ALTCALL disp_rep();
  41. void ALTCALL insert_line();
  42. void ALTCALL delete_line();
  43. void ALTCALL popup();
  44. void ALTCALL popdwn();
  45. void ALTCALL scrcpy();
  46. void ALTCALL setvattrib();
  47. void ALTCALL disp_str_at();
  48. void ALTCALL disp_char_at();
  49. void ALTCALL disp_rep_at();
  50. void ALTCALL out_int();
  51. void ALTCALL out_long();
  52. void ALTCALL out_str();
  53. void ALTCALL clr_eol();
  54. void clr_scr();
  55. void init_tty();
  56. void reinit_tty();
  57. void reset_tty();
  58. #endif
  59.